home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / machserver / 1.098 / timer / timerUnixStubs.h < prev   
C/C++ Source or Header  |  1991-05-17  |  1KB  |  33 lines

  1. /*
  2.  * timerUnixStubs.h --
  3.  *
  4.  *    These are the Unix compatibility stubs for the timer module.
  5.  *
  6.  * Copyright (C) 1991 Regents of the University of California
  7.  * All rights reserved.
  8.  * Permission to use, copy, modify, and distribute this
  9.  * software and its documentation for any purpose and without
  10.  * fee is hereby granted, provided that the above copyright
  11.  * notice appear in all copies.  The University of California
  12.  * makes no representations about the suitability of this
  13.  * software for any purpose.  It is provided "as is" without
  14.  * express or implied warranty.
  15.  *
  16.  *
  17.  * $Header: /sprite/src/kernel/fs/RCS/fs.h,v 9.13 91/03/30 17:02:16 mgbaker Exp $ SPRITE (Berkeley)
  18.  */
  19.  
  20. #ifndef _TIMER_UNIX_STUBS
  21. #define _TIMER_UNIX_STUBS
  22.  
  23. #include <sprite.h>
  24. #include <user/sys/time.h>
  25.  
  26. extern int Timer_GettimeofdayStub _ARGS_((struct timeval *tp,
  27.     struct timezone *tzpPtr));
  28. extern int Timer_SettimeofdayStub _ARGS_((struct timeval *tp,
  29.     struct timezone *tzpPtr));
  30. extern int Timer_AdjtimeStub _ARGS_((struct timeval *delta,
  31.     struct timeval *olddelta));
  32. #endif /* _TIMER_UNIX_STUBS */
  33.